[USER (data scientist)]: Now that we've taken care of encoding the categorical variables, let's jump to question three. Can you create some code to figure out if we need to normalize the credit_customers dataset? Just see if the value goes beyond 1, and if it does, we should normalize it and generate the top 5 rows of normalized dataframe. Oh, and don't forget to recommend a normalization method if it's needed.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
import numpy as np
from sklearn.preprocessing import StandardScaler 
import pickle
from decision_company import read_csv_file, select_data_types, get_columns, df_copy, get_min_value, get_max, get_first_n_rows, fetch_column, create_standard_scaler, fit_transform_standard_scaler, col_assign_val

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]  
</code1>
# YOUR SOLUTION END

print("Data after Standard Scaling:\n", get_first_n_rows(credit_customers_normalized))  

# save data
pickle.dump(get_first_n_rows(credit_customers_normalized),open("./pred_result/credit_customers_normalized_head.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure, I can help you:

# MY SOLUTION BEGIN:
